@charset "utf-8";
/* CSS Document */


/*　PCスマホ表示の切り替  */
/*-- PC版表示CSS  --*/
.pc {
	display: block;
}
.sp {
	display: none;
}


/*-- スマホ版表示CSS  --*/
@media screen and (max-width: 768px) {
.pc {
	display: none;
}
.sp {
	display: block;
}
}
/*　PCスマホ表示の切り替  */



/*　ナビゲーション  */

nav {

}
nav ul {
    width: 100%;
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-top: 10px;
    align-items: stretch;
    padding-bottom: 10px;
}
nav ul li {
	width: calc(100% / 5 - 10px);
	height: auto;
	display: block;
	text-align: center;
	align-self: center;
}
nav ul li img {
	max-width: 100%;
	height: auto;
}
nav a:hover img {
	transform: translateY(-6px);
}
nav img {
	transition-duration: 0.5s;
	max-width: 100%;
	cursor: pointer;
}

 @media screen and (max-width:1100px) {
nav {
float: none;

}
nav ul {
width: 100%;
	max-width: 100%;

}	 

}

 @media screen and (max-width:768px) {
nav ul {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    box-sizing: border-box;
    flex-wrap : wrap;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFECD3;
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
	padding-bottom: 0px;
    border-radius: 10px;
}
nav ul li {
	width: calc(100% / 3 - 10px);
	width : -webkit-calc(100% / 3 - 10px);
    list-style-type: none;
    text-align: center;
    background-color: #FFFFFF;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
    padding: 5px;
    text-decoration: none;
}
nav ul li a {
    text-decoration: none;
	padding: 10px;
    color: #3c0f0c;
	display: inline-block;
}	 
	 
}
 @media screen and (max-width:480px) {
	 
nav ul li {
	width: 100%;
    list-style-type: none;
    text-align: center;
    background-color: #FFFFFF;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom:10px;
	padding: 5px;
}
	 
	 /*
nav ul li {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}
*/
nav ul li:last-child {
}
nav ul li img {
	margin-top: 0.2em;
	margin-bottom: 0.2em;
}
nav ul {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    box-sizing: border-box;
    flex-wrap : wrap;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFECD3;
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
	padding-bottom: 0px;
    border-radius: 10px;
}	
nav ul li a {
    display: block;
}		 
/*
nav ul li:nth-child(1) {
    width: 31.3%;
    list-style-type: none;
    text-align: center;
    background-color: #FFFFFF;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom:10px;
	padding: 5px;
}
nav ul li:nth-child(2) {
    width: 31.3%;
    list-style-type: none;
    text-align: center;
    background-color: #FFFFFF;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom:10px;
	padding: 5px;
}	
nav ul li:nth-child(3) {
    width: 31.3%;
    list-style-type: none;
    text-align: center;
    background-color: #FFFFFF;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom:10px;
	padding: 5px;
}	
nav ul li:nth-child(4) {
    width: 48%;
    list-style-type: none;
    text-align: center;
    background-color: #FFFFFF;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom:10px;
	padding: 5px;
}	
nav ul li:nth-child(5) {
    width: 48%;
    list-style-type: none;
    text-align: center;
    background-color: #FFFFFF;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom:10px;
	padding: 5px;
}	
	*/
	 
	 
	 
 
	 
}




/*-----------------------------------*/
/*　　　　 スマホ用ナビ　 　　　  　 */
/*-----------------------------------*/


#sp_navi {
	display: none;
	z-index: 9999;
}
/* ++++ トグルボタン ++++ */
	
#navTgl {
	display: none;
}
label {
	cursor: pointer;
	position: fixed;
	top: 0;
	right: 0;
}
.open {
    z-index: 99999;
    width: 60px;
    height: 50px;
    transition: background .5s, transform .5s cubic-bezier(0.76, 0.52, 0.29, 1.25);
    box-sizing: border-box;
    background-color: rgba(255,158,0,0.70);/*トグルカラー*/
    border-radius: 10px;
    margin-top: 0.5em;
    margin-right: 0.5em;
}
.open::before, .open::after {
	content: "";
}
.open span, .open::before, .open::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 40%;
	border-bottom: 2px solid white;
　/*トグルボタンのサイズとカラー*/
 transition: transform .5s cubic-bezier(0.76, 0.52, 0.29, 1.25);
}
.open::before {
	transform: translateY(-8px);
}
.open::after {
	transform: translateY(8px);
}
.close {
	z-index: 99998;
	width: 100%;
	height: 100%;
	pointer-events: none;
	transition: background .5s;
}
#navTgl:checked + .open span {
	transform: scaleX(0);
}
#navTgl:checked + .open::before {
	transform: rotate(45deg);
}
#navTgl:checked + .open::after {
	transform: rotate(-45deg);
}
#navTgl:checked ~ .close {
    background-color: rgba(255,255,255,0.90); /*背景色*/
}
/* ++++ ドロワーメニュー ++++ */
.menu {
	z-index: 99998;
	position: fixed;
	overflow: auto;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 6%;
	margin: 0;
	box-sizing: border-box;
	transform: translateX(-100%);
	transition: transform .5s cubic-bezier(0.33, 1.01, 0.33, 0.97);
}
#navTgl:checked ~ .menu {
	transform: none;
}
 @media screen and (max-width:768px) {
/*TB SP ナビゲーション*/
#sp_navi {
	display: block;
	width: 100%;
}
.pc_nav {
	display: none;
	width: 100%;
	float: none;
}
}

.sp_add {
    box-sizing: border-box;
    background-color: rgba(128,220,255,0.50);
    padding: 1em;
    border-radius: 20px;
}
/*　ナビゲーション  */





* { 
margin: 0;
 padding: 0;
  border: 0;
	box-sizing: border-box;
}
ul,ol {
    margin-left: 1em;
    list-style-position: outside;
}
table {
	border-collapse: collapse;
}
table th {
    padding: 5px;
    border: 1px solid #EBEBEB;
}
table td {
	padding: 5px;
    border: 1px solid #EBEBEB;
}

/*font*/
.kosugi-maru-regular {
  font-family: "Kosugi Maru", serif;
  font-weight: 400;
  font-style: normal;
}
.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}
/* <uniquifier>: Use a unique and descriptive class name
<weight>: Use a value from 100 to 900*/ 

.noto-sans-<uniquifier> {
  font-family: "Noto Sans", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
/*font*/


a {

} 
a:visited {

} 
a:hover {

} 
a:active {

} 



/*---------------------------------------------------------
  						clearfix
---------------------------------------------------------*/
.clearfix:after {
    content: "."; 
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}
.clearfix {
    min-height: 1px;
}
.clea{
	clear:both;	
	}
* html .clearfix {
    height: 1px;
    /*¥*//*/
    height: auto;
    overflow: hidden;
    /**/
}





h3 {
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    text-align: center;
    font-size: 22px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    background-color: #7AB968;
    width: 12em;
    color: #FFFFFF;
}



h2 {
    margin-bottom: 40px;
    text-align: left;
}
.h2right {
	text-align: right;
}

h4 {
    text-align: left;
    font-size: 20px;
    font-weight: normal;
    color: #683813;
    margin-bottom: 10px;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 2px dashed #B1B1B1;
}

img {
	vertical-align: bottom;
	border: 0px;

}

/*

main a:hover img {
	opacity: 0.7;
	-moz-opacity:0.7; 
	filter: alpha(opacity=70);
	zoom: 1;
}
*/



/*ページ構成*/
html {
    margin: 0px;
    padding: 0px;
}
body {
    height: 100%;
    margin: 0px;
    padding: 0px;
    width: 100%;
    text-align: center;
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
    font-size: 18px;
    color: #422300;
    background-color: #fff;
    line-height: 1.7em;
}


#system_main {
    width: 100%;
    text-align: center;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
	position: relative;
}
.mainbox {
	width: 80%;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
}

header {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    flex-wrap : nowrap;
	position: absolute;
	top:0px;
	left: 0px;
	z-index: 1000;
	width: 100%;

}
h1 {
	width: 400px;
}
h1 img {
	width: 100%;
}
#mainnav {
    width: 680px;
    margin-top: 30px;
    margin-right: 30px;

}

#mainnav ul {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    flex-wrap : wrap;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFECD3;
	padding: 10px;
    border-radius: 10px;
}

#mainnav ul li{
    width: 20%;
    list-style-type: none;

    text-align: center;
}
	
#mainnav ul li a {
    color: #3c0f0c;
    text-decoration: none;
}

main.index {
    background-image: url(images/topimg2.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
}

main.other {
    background-image: url(images/topimg2.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
}


.mainbox {

    width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

footer {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 40px;
}


footer .copy {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}
footer .copy img {
	height: 25px;
	}

#page_top{
    width: 110px;
    position: fixed;
    right: 10px;
    bottom: -150px;
}

#page_top img {
    width: 100%;
}


/*スライダー*/

#topslide {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
}
.slider div img {
	width: 100%;
	height: 69vw;
	object-fit: cover;
}
	

#topimg1 {
	position: absolute;
	top:0px;
	left:0px;
}
#topimg1 img {
	width: 100%;
	vertical-align: top;
}




/*スライダー*/



/* トップ */
#news {
	margin-bottom: 50px;
	}
#news iframe {
    width: calc(100% - 20px);
    height: 600px;
    overflow: scroll;
    border: 10px solid #FFFFFF;
    border-radius: 10px;
    background-color: #FFFFFF;
}


#kihon {

	margin-bottom: 80px;
}
.flex {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    flex-wrap : wrap;	
}
#gaiyou {
    width: 50%;
}
#gaiyou table {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    border: 0px;
    border-collapse: separate;
    margin-bottom: 15px;
}
#gaiyou th {
    padding: 1em;
    text-align: left;
    white-space: nowrap;
    vertical-align: top;
    font-weight: normal;
    background-color: #b5cf51;
    border: 0px;
}
#gaiyou td {
    padding: 1em;
    text-align: left;
    background-color: #f5f5f5;
    border: 0px;
}
#map {
    width: 47%;
}
#map iframe {
    width: 100%;
    height: 280px;
}



@media screen and (max-width:1200px){
.mainbox {
	width: 96%;
}
header {
	display: block;
}	
h1 {
	width: 350px;
}

#mainnav {
    width: 90%;
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
}
	h2 img {
		height: 50px;
	}
	
	
}	

@media screen and (max-width:768px){
	
body {

}
#mainnav {
    width: 90%;
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
}	
	
	
	h2 {

}



footer .copy {
	width: 50%;
	margin-right: auto;
	margin-left: auto;
}
footer .copy img {
	width: 100%;
	height:auto;
	}


	


	
}



@media screen and (max-width:480px){
	
	h1 {
		width: 50%;
	}
#mainnav {
    width: 90%;

    margin-right: auto;
    margin-left: auto;
}	
	


h3 {
	font-size: 17px;
}


footer .copy {
    width: 100%;
    font-size: 0.8em;
    margin-right: auto;
    margin-left: auto;
}


#page_top{
  width: 80px;
  position: fixed;
  right: 0px;
  bottom: -80px;
}

.slider div img {
	width: 100%;
	height: 69vw;
	object-fit: cover;
}


footer {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 5px;
}
	
#gaiyou {
    width: 100%;
}
#map {
    width: 100%;
}	

	h2 img {
		height: 35px;
	}	
	
	
	
	
	
	
	}
	
